class base_object
{
public:
char name[32];
char long_name[32];
base_object *next_obj;
base_object()
{ next_obj=0; name[0]=long_name[0]=0; };
virtual ~base_object()
{ ; };
};
Member | Type | Description |
---|---|---|
name | char[] | object small name |
long_name | char[] | object long nome |
next_obj | base_object * | next object in the linked list |
None
This class is the base class for all objects. Several other classes from the engine derive from this class. It holds the object name and pointer to next object in the specific object linked list.